home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 32
/
Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso
/
Aminet
/
dev
/
lang
/
Python151_Src.lha
/
Python1.5_Source
/
Objects
/
protos
/
stringobject_protos.h
< prev
next >
Wrap
Text File
|
1998-01-26
|
1KB
|
20 lines
/* stringobject.c */
static void string_dealloc ( PyObject *op );
static int string_print ( PyStringObject *op , FILE *fp , int flags );
static PyObject *string_repr ( PyStringObject *op );
static int string_length ( PyStringObject *a );
static PyObject *string_concat ( PyStringObject *a , PyObject *bb );
static PyObject *string_repeat ( PyStringObject *a , int n );
static PyObject *string_slice ( PyStringObject *a , int i , int j );
static PyObject *string_item ( PyStringObject *a , int i );
static int string_compare ( PyStringObject *a , PyStringObject *b );
static long string_hash ( PyStringObject *a );
static int string_buffer_getreadbuf ( PyStringObject *self , int index , const void **ptr );
static int string_buffer_getwritebuf ( PyStringObject *self , int index , const void **ptr );
static int string_buffer_getsegcount ( PyStringObject *self , int *lenp );
static PyObject *getnextarg ( PyObject *args , int arglen , int *p_argidx );
static int formatfloat ( char *buf , int flags , int prec , int type , PyObject *v );
static int formatint ( char *buf , int flags , int prec , int type , PyObject *v );
static int formatchar ( char *buf , PyObject *v );